home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 May / PCWorld_2007-05_cd.bin / komunikace / alleycode / alleycodesetup.exe / {app} / PHP / length.php < prev    next >
Encoding:
PHP Script  |  2003-11-08  |  112 b   |  7 lines

  1. <?php
  2. $str = 'abcdef';
  3. echo strlen($str); //return  6
  4.  
  5. $str = ' ab cd ';
  6. echo strlen($str); //return  7
  7. ?>